home *** CD-ROM | disk | FTP | other *** search
/ Scene Storm / Scene Storm - Volume 1.iso / coding / c / amiexpress / source / ae / code / ax3.00 / unavailnotice.c < prev    next >
Encoding:
C/C++ Source or Header  |  1980-01-03  |  129 b   |  8 lines

  1. #include "bbs.h"
  2.  
  3. void UnAvailNotice(char *file,char *temp)
  4. {
  5.  sprintf(temp,"File %s Unavailable\r\n",file);
  6.  ConPutStr(temp);
  7. }
  8.